@charset "utf-8";
/* ====================公共样式========================= */


/* 头部 */
.Header-wrapper {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background-color: rgb(255, 255, 255);
	z-index: 99;
}

.Header-wrapper.on {
	box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}

.Header-wrapper.on::after {
	opacity: 0;
}

.Header-container {}

.Header-container .logo {}

.Header-container .logo h1 {
	font-size: 0;

}

.Header-container .logo h1 a {
	font-size: 0;
}

.Header-container .logo h1 a img {
	width: auto;
	height: 50px;
	display: block;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.Header-wrapper.on .logo h1 a img {
	-webkit-transform: scale(.82);
	transform: scale(.82);
}

.Header-container .nav_item>ul {}

.Header-container .nav_item>ul>li {
	float: left;
	position: relative;
	margin: 0 0.6rem 0 0;
}

.Header-container .nav_item>ul>li::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #0075c1;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.Header-container .nav_item>ul>li:hover::before {
	width: 100%;
}

.Header-container .nav_item>ul>li>a {
	display: inline-block;
	font-size: 18px;
	line-height: 98px;
	color: #221815;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.Header-wrapper.on .nav_item>ul>li>a {
	line-height: 70px;
}

.Header-container .nav_item>ul>li>a:hover,
.Header-container .nav_item>ul>li.active>a {
	color: #0075c1 !important;
}

/* 二级导航 */
.Header-wrapper .nav_item .sub_nav {
	padding: 0.3rem 0;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 2.8rem;
	z-index: 99;
	background: #fff;
	transform: scaleY(0);
	transform-origin: top center;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.Header-wrapper .nav_item>ul>li:hover .sub_nav {
	transform: none;
	opacity: 1;
}

.Header-wrapper .nav_item .sub_nav li {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.Header-wrapper .nav_item .sub_nav li:hover {
	background-color: #F4F9FF;
}

.Header-wrapper .nav_item .sub_nav li a {
	display: block;
	font-size: 16px;
	padding: 0.12rem 0.2rem;
	color: #333;
}

.Header-wrapper .nav_item .sub_nav li:hover a {
	-webkit-transform: translateX(6px);
	-ms-transform: translateX(6px);
	transform: translateX(6px);
}


.Header-container .tool {
	color: #333;
}

.Header-container .tool .search {}

.Header-container .tool .search i {
	position: relative;
	font-size: 24px;
	padding-right: 0.18rem;
	margin-right: 0.2rem;
	cursor: pointer;
}

/* 
.Header-container .tool .search i::after{
	position: absolute;
	content: '';
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background-color: rgb(0,0,0,.3);
} */
.Header-container .tool .language {
	position: relative;
}

.Header-container .tool .language a {}

.Header-container .tool .language i {
	font-size: 24px;
}

.Header-container .tool .language p {
	font-size: 14px;
	margin-left: 0.08rem;
	display: inline-block;
}

.Header-container .tool .language p::after {
	display: inline-block;
	margin-left: 5px;
	content: "\f0d7";
	font-size: 12px;
	font-family: 'fontawesome';
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	/* -webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform: rotate(180deg); */
}

.Header-container .tool .language.on p::after {
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}

.Header-container .tool .language .language_down {
	display: none;
	position: absolute;
	z-index: 2;
	left: 5px;
	top: calc(100% + 14px);
	width: 65px;
	height: auto;
	background: rgba(0, 0, 0, .8);
	text-align: left;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

.Header-container .tool .language .language_down a {
	display: block;
	font-size: 14px;
	padding: 10px 15px;
	color: rgba(255, 255, 255, .8);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	/* letter-spacing: 0.5px; */
	text-align: center;
}

.Header-container .tool .language .language_down a:hover {
	background-color: #0075c1;
}

/* 产品下拉 */
.Header-container .nav_item ul li .drop_pro {
	position: fixed;
	top: 90px;
	left: 0;
	width: 100vw;
	background: #fff;
	padding: 0.55rem 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	/* box-shadow: 0 0 10px rgb(0 0 0 / 10%); */
	border-top: 1px solid #E5E5E5;
}

.Header-container .nav_item ul li:hover .drop_pro {
	opacity: 1;
	visibility: visible;
}

.Header-container .nav_item ul li .drop_pro .w16 {
	padding: 0 10%;
}

.Header-container .nav_item ul li .drop_pro .fl {
	width: 70%;
	padding-right: 0.3rem;
}

.Header-container .nav_item ul li .drop_pro .fl dl {
	float: left;
	/* width: calc(100% / 3); */
	width: 50%;
	margin: 0.12rem 0;
}

.Header-container .nav_item ul li .drop_pro .fl dl a {
	font-size: 16px;
	letter-spacing: 1px;
	/*font-family: "OBS";*/
	font-weight: 700;
	line-height: 24px;
	text-transform: capitalize;
	color: #242424;
}

.Header-container .nav_item ul li .drop_pro .fl dl a:hover {
	/* color: rgba(255,255,255,0.95); */
	-webkit-transform: translateX(8px);
	-ms-transform: translateX(8px);
	transform: translateX(8px);
	color: #0075c1;
}

.Header-container .nav_item ul li .drop_pro .fl dl dt {}

.Header-container .nav_item ul li .drop_pro .fl dl dt a {
	height: 48px;
}

.Header-container .nav_item ul li .drop_pro .fl dl dd {}

.Header-container .nav_item ul li .drop_pro .fl dl dd a {}

.Header-container .nav_item ul li .drop_pro .fr {
	width: 30%;
}

.Header-container .nav_item ul li .drop_pro .fr .pic {
	/* background-color: white; */
}

.Header-container .nav_item ul li .drop_pro .fr .pic img {
	/* width: 100%; */
	height: 100%;
	object-fit: contain;
}


/*顶部导航开关*/
#c-header .c-switch {
	display: none;
	width: 24px;
	height: 20px;
	cursor: pointer;
}

@media (max-width: 991px) {
	#c-header .c-switch {
		display: block;
	}
}

#c-header .c-switch i {
	position: relative;
	display: block;
	height: 2px;
	background: #333;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#c-header .c-switch i:nth-child(1) {
	top: 0;
}

#c-header .c-switch i:nth-child(3) {
	bottom: 0;
}

#c-header .c-switch i:nth-child(2) {
	margin: 6px 0;
}

.c-open #c-header .c-switch i {
	background: #000000;
}

body.c-open #c-header .c-switch i:nth-child(2) {
	opacity: 0;
}

body.c-open #c-header .c-switch i:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

body.c-open #c-header .c-switch i:nth-child(3) {
	bottom: 8px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*顶部移动端导航*/
#c-header .c-nav2 {
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	height: 0;
	line-height: 50px;
	background: #fff;
	overflow-y: auto;
	transition: all 0.5s;
	text-align: left;
}

#c-header .c-nav2>li:last-child {
	border-bottom: 1px solid #f1f1f1;
}

#c-header .c-nav2 li {
	padding: 0 20px;
	border-top: 1px solid #f1f1f1;
}

@media (max-width: 767px) {
	#c-header .c-nav2 li {
		padding: 0 4%;
	}

	#c-header .c-nav2 ul li {
		font-size: 16px;
		line-height: 45px;
	}
}

#c-header .c-nav2 li .c-title-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#c-header .c-nav2 li a {
	display: block;
	color: #333;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	font-size: 16px;
}

#c-header .c-nav2 li i {
	font-size: 20px;
	color: #333;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

#c-header .c-nav2 li .c-title-box.on i {
	transform: rotate(180deg);
}

#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on>a {
	color: #508cc9;
}

#c-header .c-nav2 li ul {
	display: none;
}

.c-open #c-header .c-nav2 {
	height: calc(100vh - 60px);
}



/* 底部 */
.Footer-wrapper {
	/* background-color: #141414; */
	/* background-color: #616161; */
	background-color: #F6F7FB;
	/* border-top: 1px solid #0075c1; */
}

.Footer-container {}

.Footer-container .fl {
	width: 50%;
}

.Footer-container .fl .foot_logo {}

.Footer-container .fl .foot_logo img {
	height: 0.6rem;
}

.Footer-container .fl .foot_info {}

.Footer-container .fl .foot_info .text {
	margin: 0.45rem 0;
	color: #333;
	line-height: 1.3;
	max-width: 60%;
}

.Footer-container .fl .foot_info .text h4 {
	font-size: 18px;
	margin-bottom: 0.1rem;
	text-transform: uppercase;
}

.Footer-container .fl .foot_info .text p {
	font-size: 16px;
}

.Footer-container .fl .foot_info ul {}

.Footer-container .fl .foot_info ul li {
	position: relative;
	padding-left: 30px;
	font-size: 16px;
	color: #333;
	margin-bottom: 0.2rem;
}

.Footer-container .fl .foot_info ul li i {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 16px;
	color: #0075C1;
}

.Footer-container .fl .foot_info ul li:nth-child(2) {}

.Footer-container .fl .foot_info ul li:nth-child(3) {}

.Footer-container .fl .foot_info ul li span {
	display: inline-block;
	margin-bottom: 0.1rem;
}

.Footer-container .fl .foot_info ul li p {}

.Footer-container .fr {
	width: 50%;
}

.Footer-container .fr .foot_nav {}

.Footer-container .fr .foot_nav {}

.Footer-container .fr .foot_nav li {
	width: 33%;
	margin-bottom: 0.6rem;
}

.Footer-container .fr .foot_nav li p {
	font-size: 18px;
	font-weight: 700;
	color: #181818;
	margin-bottom: 0.25rem;
}

.Footer-container .fr .foot_nav li p a {}

.Footer-container .fr .foot_nav li p i {}

.Footer-container .fr .foot_nav li .foot_nav_link {}

.Footer-container .fr .foot_nav li .foot_nav_link a {
	display: block;
	font-size: 14px;
	line-height: 1.3;
	margin-bottom: 0.12rem;
	/* color: rgb(255,255,255,.5); */
	/* color: #666; */
	color: #424345;
}

.Footer-container .fr .foot_nav li .foot_nav_link a:hover {
	color: #0075c1;
}

.Footer-container .fr .foot_nav li .foot_nav_link a:last-child {
	margin-bottom: 0;
}

.Footer-container .fr .foot_link {}

.Footer-container .fr .foot_link a.mess_more {
	/*margin-left: 0.8rem;*/
	/* border: 1px solid #fff;
	background-color: transparent;
	color: white; */
}

.Footer-container .fr .foot_link a.mess_more:hover {
	background-color: white;
	color: #0075C1;
}

.media_ul {}

.media_ul li {
	margin-right: 10px;
}

.media_ul li:last-child {
	margin-right: 0;
}

.media_ul li a {
	display: block;
	padding: 8px;
	background-color: #626262;
	color: white;
	border-radius: 4px;
	font-size: 0;
}

.media_ul li a i {
	font-size: 18px;
}

.media_ul li:nth-child(1):hover a {
	background-color: #1278F3;
}

.media_ul li:nth-child(2):hover a {
	background-color: #1D9BF0;
}

.media_ul li:nth-child(3):hover a {
	background-color: #0A66C2;
}

.media_ul li:nth-child(4):hover a {
	background-color: #DA4369;
}

.media_ul li:nth-child(5):hover a {
	background-color: #FB0204;
}


.Footer-copy {
	text-align: center;
	padding: 0.28rem 0;
	background-color: #edeff7;
}

.Footer-copy,
.Footer-copy a {
	font-size: 14px;
	line-height: 1.3;
	color: #333;
}

/* 中间+共用部分 */



/* ind_banner */
.ind_banner .swiper-pagination-bullet {
	background-color: white;
	opacity: 1;
}

.ind_banner .swiper-pagination-bullet-active {
	background-color: #81cfc2;
}

.ind_banner .swiper-button-next,
.ind_banner .swiper-button-prev {
	background-size: 0.45rem 0.45rem;
	width: 0.5rem;
	height: 0.5rem;
	line-height: 0.5rem;
	border-radius: 50%;
	opacity: 0;
	transition: all .4s;
	-webkit-transform: all .4s;
	-moz-transition: all .4s;
	-o-transition: all .4s;
}

.ind_banner .swiper-button-next:after,
.ind_banner .swiper-button-prev:after {
	color: #0075c1;
}

.ind_banner .swiper-button-next {
	right: 0.6rem;
}

.ind_banner .swiper-button-prev {
	left: 0.6rem;
}

.ind_banner:hover .swiper-button-next,
.ind_banner:hover .swiper-button-prev {
	opacity: 1;
}

.ind_banner .swiper-pagination {
	bottom: 0.5rem !important;
}

.ind_banner .swiper-pagination-bullet {
	width: 0.64rem;
	height: 0.06rem;
	opacity: 1;
	background: rgba(255, 255, 255, 0.33);
	border-radius: 0;
}

.ind_banner .swiper-pagination-bullet-active {
	background-color: #0075C1;
}


.ind_banner .ban_txt {
	position: absolute;
	line-height: 1.3;
	color: #2c2c2c;
}

.ind_banner .ban_txt_view {
	/* width: 50%;
	padding-left: 5%; */
}

.ind_banner .ban_txt span {
	display: block;
	font-size: 0.4rem;
	font-family: "UB";
}

.ind_banner .ban_txt p {
	display: block;
	font-size: 18px;
	margin: 0.2rem 0 0.36rem;
}

.ind_banner .ban_txt a {
	display: inline-block;
	font-size: 18px;
	padding: 0.12rem 0.45rem;
	border-radius: 0.6rem;
	background-color: #0075C1;
	color: white;
}

.ind_banner .ban_txt a:hover {
	background-color: #004C7D;
}

.ind_banner .ban_txt a i {
	margin-left: 0.06rem;
}

.ind_banner .ban_txt1 {
	width: 6.3rem;
	top: 18.88%;
	right: 15.625%;
}

.ind_banner .ban_txt2 {
	width: 7.1rem;
	top: 32%;
	right: 17.7%;
}

.ind_banner .ban_txt3 {
	width: 5.55rem;
	top: 16.78%;
	right: 19.8%;
}


/* tc_search s */
.tc_search {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10001;
	pointer-events: none;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.tc_search.act {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	display: block;
	pointer-events: auto;
}

.tc_search form {
	width: 9.6rem;
	max-width: 80%;
	margin: 0 auto;
	padding: 0 20px;
	border-bottom: 2px solid #eee;
	height: 0.7rem;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.tc_search input {
	width: 80%;
	height: 0.7rem;
	font-size: 0.34rem;
	color: #c1c1c1;
	box-shadow: none;
	-webkit-appearance: none;
	float: left;
	border-right: 0;
	background: none;
}

.tc_search input::placeholder {
	color: #c1c1c1;
}

.tc_search button {
	max-width: 20%;
	height: 0.7rem;
	border: 0;
	line-height: 0.7rem;
	color: #c1c1c1;
	cursor: pointer;
	text-transform: uppercase;
	float: right;
	font-size: 0.48rem;
	background-color: transparent;
}

.tc_search .search_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .85);
	z-index: 0;
}

/* tc_search e */

/* ind_tit s */
.ind_tit {
	text-align: center;
	color: #91999e;
	line-height: 1.3;
}

.ind_tit.tal {
	text-align: left;
}

.ind_tit.white {
	color: white;
}

.ind_tit h3 {
	font-size: 0.42rem;
	line-height: 1;
	text-transform: uppercase;
	font-family: "UB";
}

.ind_tit p {
	font-size: 16px;
	margin-top: 0.08rem;
}

.ind_tit ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.ind_tit ul li {
	margin-right: 0.35rem;
}

.ind_tit ul li:last-child {
	margin-right: 0 !important;
}

.ind_tit ul li a {
	position: relative;
	font-size: 16px;
}

.ind_tit ul li a::after {
	position: absolute;
	content: "";
	display: block;
	bottom: -0.08rem;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #0075C1;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.ind_tit ul li a:hover,
.ind_tit ul li.active a {
	color: #0075C1;
}

.ind_tit ul li a:hover::after {
	width: 120%;
}

/* ind_tit e*/

/* swiper-tool s */
.swiper-tool {
	position: absolute;
	right: 0;
	top: 50%;
	display: flex;
	justify-content: space-between;
	align-content: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.swiper-tool .swiper-button-prev,
.swiper-tool .swiper-button-next {
	position: relative;
	width: 0.48rem;
	height: 0.48rem;
	border-radius: 50%;
	border: 1px solid #CACBCC;
	margin-top: 0;
	top: auto;
	transform: translateY(0);
	left: auto;
	right: auto;
	bottom: auto;
}

.swiper-tool .swiper-button-prev::after,
.swiper-tool .swiper-button-next::after {
	font-size: 0.22rem;
	color: #000;
}

.swiper-tool .swiper-pagination {
	position: relative;
	width: 75px;
	display: flex;
	align-content: center;
	justify-content: center;
	top: auto;
	bottom: auto;
	left: auto;
	font-size: 16px;
	font-weight: 700;
	line-height: 0.48rem;
	height: 0.48rem;
	color: #4C4C4C;
}

.swiper-tool .swiper-pagination span {
	width: 18px;
	text-align: center;
}

/* swiper-tool e */

/* ind_more s */
.ind_more:hover {
	transform: scale(.9) !important;
	background-color: #004C7D !important;
}

/* ind_more e */

/* mess_more s */
.mess_more {
	display: inline-flex;
	align-content: center;
	justify-content: center;
	font-size: 16px;
	line-height: 26px;
	color: white;
	padding: 0.12rem 0.32rem;
	background-color: #0075c1;
}

.mess_more:hover {
	background-color: #004C7D;
}

.mess_more i {
	font-size: 20px;
	margin-right: 0.12rem;
}

.mess_more i:last-child {
	font-size: 16px;
	margin-right: 0;
	margin-left: 0.16rem;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.mess_more:hover i:last-child {
	-webkit-transform: translateX(6px);
	-ms-transform: translateX(6px);
	transform: translateX(6px);
}

/* mess_more e */

/* n_sortnav s */
.n_sortnav {
	margin-top: 0.55rem;
}

.n_sortnav .fl {
	flex: 1;
}

.n_sortnav .tit {
	position: relative;
	font-size: 1.08rem;
	line-height: 0.7;
	font-family: "UB";
	color: #f7f7f7;
	text-transform: uppercase;
}

.n_sortnav .tit h3 {
	position: absolute;
	left: 0;
	bottom: 0;
	display: inline-block;
	font-size: 0.36rem;
	color: #000;
	text-transform: capitalize;
}

.n_sortnav .tit h3::after {
	content: "";
	display: block;
	width: 0.6rem;
	height: 2px;
	margin-left: 0.1rem;
	margin-top: 0.12rem;
	background-color: #04518C;
}

.n_sortnav .fr {}

.n_sortnav ul {
	overflow: hidden;
}

.n_sortnav ul li {
	float: left;
	margin-left: 0.24rem;
}

.n_sortnav ul li a {
	font-size: 18px;
	text-transform: capitalize;
	color: #333;
}

.n_sortnav ul li.active a {
	color: #0075c1;
}

/* n_sortnav e */


/* com_ban */
.com_ban {
	position: relative;
	height: 4.2rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.com_ban::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0, .15);
	z-index: 1;
	mix-blend-mode: multiply;
}

.com_ban .ban_txt {
	position: absolute;
	top: 50%;
	left: 0;
	color: #ffffff;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 3;
}

.com_ban .ban_txt h3 {
	display: block;
	font-size: 0.64rem;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	font-family: 'UB';
}

.com_ban .ban_txt h3::after {
	content: "";
	display: block;
	width: 0.44rem;
	height: 0.04rem;
	margin-top: 0.05rem;
	border-radius: 0.02rem;
	background-color: white;
}

.com_ban .ban_txt p {
	font-size: 16px;
	line-height: 1.5;
	width: 10rem;
	max-width: 100%;
	/* color: #999; */
	color: #fff;
	margin-top: 0.2rem;
}

/* crumbs */
.crumbs {
	padding: 0.16rem 0;
	border-bottom: 1px solid #e8e8e8;
}

.crumbs,
.crumbs a {
	font-size: 14px;
	line-height: 1.3;
	color: #999;
}

/* com_page */
.com-page {
	padding-top: 0.4rem;
	font-size: 0;
}

.com-page a,
.com-page span {
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #333;
	background: #eaeaea;
	margin: 0 0.05rem;
	transition: all .3s;
}

.com-page a.page-num-current,
.com-page a:hover {
	background-color: #0075c1;
	border-color: #0075c1;
	color: white;
	line-height: 48px;
}

.com-page a i {
	font-size: 22px;
	vertical-align: middle;
	line-height: 1;
}

/* ny_tit */
.ny_tit {
	margin-bottom: 0.5rem;
}

.ny_tit h3 {
	font-size: 0.36rem;
	line-height: 1.2;
	margin-bottom: 0.16rem;
	font-family: "UB";
	color: #000;
}

.ny_tit h3::after {
	content: "";
	display: block;
	width: 0.6rem;
	height: 0.02rem;
	margin: 0.12rem 0;
	background-color: #0075C1;
}

.ny_tit p {
	font-size: 14px;
	line-height: 1.5;
	color: #999;
}


/* swiper-page01 */
.swiper-page01.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
}

.swiper-page01.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.swiper-page01.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #0075C1;
	width: 30px;
	height: 8px;
	border-radius: 4px;
}

/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {

	/* 1600 × (900/1024/1200) */
	.Header-container .nav_item>ul>li {
		margin-right: 0.45rem;
	}
}

@media all and (max-width:1599px) {

	/* 1440 × (900/1050) */
	.ind_banner .ban_txt1 {
		top: 15%;
		right: 10%;
	}

	.ind_banner .ban_txt2 {
		top: 28%;
		right: 12%;
	}

	.ind_banner .ban_txt3 {
		top: 12%;
		right: 14%;
	}
}

@media all and (max-width:1439px) {
	/* 1360 × (768) */
}

@media all and (max-width:1359px) {

	/* 1280 × (800/854/1024) */
	.Header-container .nav_item>ul>li>a {
		font-size: 16px;
	}

	.Header-container .nav_item>ul>li {
		margin-right: 0.4rem;
	}

	.Header-container .logo h1 a img {
		height: 45px;
	}
}

@media all and (max-width:1279px) {
	/* 1152 × (864) */
}

@media all and (max-width:1151px) {

	/* 1024 × (600/768) */
	.Header-container {
		height: 60px;
	}

	.Header-container .logo h1 a img {
		height: 36px;
	}

	.Header-wrapper.on .logo h1 a img {
		transform: none;
	}

	.Header-container .nav_item {
		display: none;
	}

	.mt {
		margin-top: 60px;
	}

	#c-header .c-switch {
		display: block;
		margin-left: 0.36rem;
	}

}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

	/* 平板设备 720 适配 */
	.pc {
		display: none;
	}

	.mb {
		display: block;
	}

	.ind_tit h3 {
		font-size: 0.48rem;
	}

	.ind_tit p {
		margin-top: 0.12rem;
	}

	.ind_hot .ind_tit ul {
		flex-wrap: wrap;
	}

	.ind_hot .ind_tit ul li {
		line-height: 1.75;
		margin-right: 0.4rem;
	}

	.swiper-tool {
		justify-content: center;
		width: 100%;
		top: auto;
		bottom: 35px;
		left: 0;
		transform: none;
	}

	.swiper-tool .swiper-pagination {
		margin: 0 0.35rem;
		height: 0.7rem;
		line-height: 0.7rem;
	}

	.swiper-tool .swiper-button-prev,
	.swiper-tool .swiper-button-next {
		width: 0.7rem;
		height: 0.7rem;
	}

	.swiper-tool .swiper-button-prev::after,
	.swiper-tool .swiper-button-next::after {
		font-size: 0.24rem;
	}

	.Footer-container .fl,
	.Footer-container .fr {
		width: 100%;
	}

	.Footer-container .fl .foot_logo img {
		height: 0.8rem;
	}

	.Footer-container .fl .foot_info .text {
		max-width: 100%;
		margin: 0.4rem 0 0.5rem;
	}

	.Footer-container .fl .foot_info .text h4,
	.Footer-container .fl .foot_info ul li span {
		margin-bottom: 0.15rem;
	}

	.Footer-container .fl .foot_info ul li {
		padding-left: 35px;
		margin-bottom: 0.4rem;
	}

	.Footer-container .fl .foot_info ul li i {
		font-size: 20px;
	}

	.Footer-container .fr .foot_nav li {
		width: 100%;
		border-bottom: 1px solid rgb(255, 255, 255, .8);
		margin-bottom: 0;
	}

	.Footer-container .fr .foot_link {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 0.45rem;
	}

	.Footer-container .fr .foot_nav li .foot_nav_link {
		display: none;
		padding-bottom: 0.25rem;
	}

	.Footer-container .fr .foot_nav li p {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 18px;
		padding: 0.3rem 0;
		margin-bottom: 0;
	}

	.Footer-container .fr .foot_nav li .foot_nav_link a {
		line-height: 1.5;
		margin-bottom: 0.15rem;
	}

	.Footer-container .fr .foot_link a.mess_more {
		margin-left: 0;
		margin-top: 0.45rem;
		padding: 0.2rem 0.5rem;
	}

	.Footer-copy {
		font-size: 13px;
	}

	.ind_banner .swiper-slide {
		height: 8rem;
	}

	.ind_banner .swiper-slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.ind_banner .ban_txt_view {
		width: 100%;
		padding-left: 0;
	}

	.ind_banner .ban_txt span {
		font-size: 0.3rem;
	}

	.ind_banner .ban_txt p {
		font-size: 0.42rem;
		margin: 0.3rem 0 0.5rem;
	}

	.ind_banner .ban_txt a {
		padding: 0.16rem 0.6rem;
	}
}

@media all and (max-width:768px) {
	.tc_search form {
		width: 92%;
		max-width: 92%;
		padding: 0 0.2rem;
		margin-bottom: 1px;
		height: 0.8rem;
		border-width: 1px;
	}

	.tc_search input {
		font-size: 0.3rem;
		height: 0.8rem;
	}
}

@media all and (max-width:640px) {
	/* 移动终端以上 360 适配 */
}

@media all and (max-width:480px) {

	.ind_tit p,
	.Footer-container .fl .foot_info .text p,
	.ind_banner .ban_txt a {
		font-size: 14px;
	}
}

@media all and (max-width:420px) {}

@media all and (max-width:376px) {}